home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Programming in Microsoft Windows with C#
/
Programacion en Microsoft Windows con C#.iso
/
Original Code
/
Hello Windows Forms
/
RunFormBadly
/
RunFormBadly.cs
next >
Encoding:
Amiga (detected)
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
2001-01-15
|
391 b
|
18 lines
//-------------------------------------------
// RunFormBadly.cs ⌐ 2001 by Charles Petzold
//-------------------------------------------
using System.Windows.Forms;
class RunFormBadly
{
public static void Main()
{
Form form = new Form();
form.Text = "Not a Good Idea...";
form.Visible = true;
Application.Run();
}
}